home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
lib
/
include
/
netinet
/
RCS
/
udp_var.h,v
< prev
next >
Wrap
Text File
|
1988-06-29
|
2KB
|
89 lines
head 1.2;
access ;
symbols ;
locks ; strict;
comment @ * @;
1.2
date 88.06.29.15.11.45; author ouster; state Exp;
branches ;
next 1.1;
1.1
date 88.06.21.11.59.35; author ouster; state Exp;
branches ;
next ;
desc
@@
1.2
log
@Add ifdefs to keep files from being processed twice.
@
text
@/*
* Copyright (c) 1982, 1986 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of California at Berkeley. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*
* @@(#)udp_var.h 7.3 (Berkeley) 12/7/87
*/
#ifndef _UDP_VAR
#define _UDP_VAR
/*
* UDP kernel structures and variables.
*/
struct udpiphdr {
struct ipovly ui_i; /* overlaid ip structure */
struct udphdr ui_u; /* udp header */
};
#define ui_next ui_i.ih_next
#define ui_prev ui_i.ih_prev
#define ui_x1 ui_i.ih_x1
#define ui_pr ui_i.ih_pr
#define ui_len ui_i.ih_len
#define ui_src ui_i.ih_src
#define ui_dst ui_i.ih_dst
#define ui_sport ui_u.uh_sport
#define ui_dport ui_u.uh_dport
#define ui_ulen ui_u.uh_ulen
#define ui_sum ui_u.uh_sum
struct udpstat {
int udps_hdrops;
int udps_badsum;
int udps_badlen;
};
#define UDP_TTL 30 /* deflt time to live for UDP packets */
#ifdef KERNEL
struct inpcb udb;
struct udpstat udpstat;
#endif
#endif _UDP_VAR
@
1.1
log
@Initial revision
@
text
@d15 3
d49 2
@